home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT2.SPK / test / test_b / lcl / outparam < prev    next >
Text File  |  1996-08-28  |  151b  |  7 lines

  1. typedef struct _st { int a; int b; } *st;
  2.  
  3. void f(out int *a, int *b) { modifies *a; }
  4. void h(out st s, out st t) { modifies *t; }
  5. int g (void) { } 
  6.  
  7.